home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / LISTINGS / V_12_11 / ALLISON.ZIP / FORM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-06  |  318 b   |  26 lines

  1. LISTING 13 - The Form class
  2. // form.h:  Data-entry forms
  3.  
  4. class Field;
  5. class istream;
  6. class ostream;
  7.  
  8. class Form
  9. {
  10.     enum {MAXFIELDS = 32};
  11.  
  12.     Field *fields[MAXFIELDS];
  13.     int nfields;
  14.  
  15. public:
  16.     Form();
  17.     ~Form();
  18.     int add(Field *);
  19. };
  20.  
  21. inline Form::Form()
  22. {
  23.     nfields = 0;
  24. }
  25.  
  26.